Skip to content

Conversation

@mcbarton
Copy link
Collaborator

Description

Please include a summary of changes, motivation and context for this PR.

Fixes # (issue)

CppInterOps Emscripten library can now be compiled to a static library, and pass almost all the same tests as the shared library build. This PR adds what is necessary to build the Emscripten static library, and run the tests on this build.

Type of change

Please tick all options which are relevant.

  • Bug fix
  • New feature
  • Requires documentation updates

Testing

Please describe the test(s) that you added and ran to verify your changes.

Checklist

  • I have read the contribution guide recently

@codecov
Copy link

codecov bot commented Jun 22, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 78.77%. Comparing base (f3ade2a) to head (f1119b2).
⚠️ Report is 52 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #641   +/-   ##
=======================================
  Coverage   78.77%   78.77%           
=======================================
  Files           9        9           
  Lines        3849     3849           
=======================================
  Hits         3032     3032           
  Misses        817      817           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

5 similar comments
@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@mcbarton mcbarton force-pushed the static-library branch 2 times, most recently from e82078f to 5fdd505 Compare June 23, 2025 08:31
@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@mcbarton mcbarton force-pushed the static-library branch 3 times, most recently from 4d2a727 to 93f4518 Compare June 23, 2025 09:26
@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@anutosh491
Copy link
Collaborator

Hi, could you try out all xeus-cpp-lite examples (from our link) based on top of the static library for cppinterop.

@mcbarton
Copy link
Collaborator Author

mcbarton commented Jun 23, 2025

Hi, could you try out all xeus-cpp-lite examples (from our link) based on top of the static library for cppinterop.

Hi @anutosh491 Once this PR is in. I plan to put a PR in xeus-cpp to allow CppInterOp to have a deployment based on both a shared and static build, so we can compare both side by side (this will take one subsequent PR in CppInterOp to make this happen). Can you review and approve this PR if happy, so I can take it in once the ci passes?

@mcbarton mcbarton marked this pull request as ready for review June 23, 2025 11:36
@mcbarton mcbarton changed the title [wip] Add Emscripten static library build CppInterOp Add Emscripten static library build CppInterOp Jun 23, 2025
@anutosh491
Copy link
Collaborator

I plan to put a PR in xeus-cpp to allow CppInterOp to have a deployment based on both a shared and static build, so we can compare both side by side

Well we made quite some changes to jupyterlite (as xeus-cpp-lite was the first kernel using a side module) like this jupyterlite/xeus#146 for eg.
and now we also have it as a part of kernel.json https://github.com/compiler-research/xeus-cpp/blob/main/share/jupyter/kernels/xcpp23/wasm_kernel.json.in#L14

So yeah I am a bit skeptical if both can live simultaneously. So I think it would be better if we could try it out before (also I am not sure we want to give users an option anyways, I would just stick to the better one)

@mcbarton
Copy link
Collaborator Author

mcbarton commented Jun 23, 2025

I plan to put a PR in xeus-cpp to allow CppInterOp to have a deployment based on both a shared and static build, so we can compare both side by side

Well we made quite some changes to jupyterlite (as xeus-cpp-lite was the first kernel using a side module) like this jupyterlite/xeus#146 for eg. and now we also have it as a part of kernel.json https://github.com/compiler-research/xeus-cpp/blob/main/share/jupyter/kernels/xcpp23/wasm_kernel.json.in#L14

So yeah I am a bit skeptical if both can live simultaneously. So I think it would be better if we could try it out before (also I am not sure we want to give users an option anyways, I would just stick to the better one)

Each site would be built separately. There is no chance of a clash. This will be clear from the follow up to this PR in CppInterOp and the xeus-cpp one.

This PR also doesn't in any way effect the xeus-cpp deployment. Please review whether you are happy with the Emscripten CppInterOp static library build.

@anutosh491
Copy link
Collaborator

Not sure you understood, what I tried to convey.

What I wanted to convey is that

  1. We should only cater to the best build for xeus-cpp-lite (either static or shared but not both.)
  2. jupyterlite had some changes introduced only for xeus-cpp-lite (because we started with the side module for libclangCppInterop.so)
  3. So now if we can conclusively say the static build is better, we can get rid of those changes in jupyterlite and also would need changes to our kernel.json
  4. So nothing wrong with providing a static build for cppinterop but xeus-cpp using it or not is a separate question.

Anyways on leave till the next 2 days after which I can look at this

Copy link
Contributor

@vgvassilev vgvassilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure I remember why we do static vs shared libraries. What's the overall networking requirements for the static built emscripten? My expectation is they should both be the same size, right?

@mcbarton
Copy link
Collaborator Author

I am not sure I remember why we do static vs shared libraries. What's the overall networking requirements for the static built emscripten? My expectation is they should both be the same size, right?

Traditionally people go for the static library builds , because Emscripten didn't support shared library builds in the past. This is no longer the case. We would need xeus-cpp to accept CppInterOp being a shared library in the future, even if a static library worked, if we want to include cppyy in the future deployment, since can only work with a shared library of CppInterOp.

Here is the things I noticed most in how an Emscripten static library build compares to a shared library one. There are probably many more differences, but these are the things that stuck out to me

  • Generated library is much smaller (644kb vs 81 Mb)
  • The library itself builds very quickly
  • None of the symbols needed for the tests get optimised away, so we don't need to export any symbols in this case like we do for the shared build
  • Although the library itself builds very quick, if you build the tests, the build is longer overall since building the tests takes longer
  • The compute resources you need to build the tests can be quite high (and why I suspect the Ubuntu arm llvm 19 job fails in the ci). The tests even failed to build once on my Macbook (I believe due to ram usage, but haven't been able to replicate it)
  • Most test cases which pass for a shared build, also pass for a static build, but not every case as can be seen from this PR. The static build passes one test which is labelled as failed for the shared build.

@vgvassilev
Copy link
Contributor

  • Generated library is much smaller (644kb vs 81 Mb)

Either the other 80Mb must be hidden into something else that we don't measure, or we are doing something wrong in the shared object case...

@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@mcbarton mcbarton requested a review from vgvassilev June 24, 2025 15:59
@github-actions
Copy link
Contributor

clang-tidy review says "All clean, LGTM! 👍"

@anutosh491
Copy link
Collaborator

Hi, could you try out all xeus-cpp-lite examples (from our link) based on top of the static library for cppinterop.

Would be great if you could try this out, and test out all 3 examples notebooks with all relevant browsers (and devices you would have)

I can pitch in soon trying out some devices on my end, once you atleast tell me if the static build gives us a working xeus-cpp-lite.

@mcbarton
Copy link
Collaborator Author

Hi, could you try out all xeus-cpp-lite examples (from our link) based on top of the static library for cppinterop.

Would be great if you could try this out, and test out all 3 examples notebooks with all relevant browsers (and devices you would have)

I can pitch in soon trying out some devices on my end, once you atleast tell me if the static build gives us a working xeus-cpp-lite.

@vgvassilev @anutosh491 I can test the Emscripten build of xeus-cpp, with this static library build of CppInterOp, but that is a separate issue to this PR, and would like it reviewed independent of this objective. This objective of this PR is purely about adding the ability to build CppInterOp as a Emscripten static library, and would like to keep that way.

Copy link
Contributor

@vgvassilev vgvassilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lgtm! Adding a static library support is a good idea imo.

@anutosh491
Copy link
Collaborator

anutosh491 commented Jun 25, 2025

but that is a separate issue to this PR, and would like it reviewed independent of this objective

This is might be ready but not sure if its a separate problem overall. The only library that essentially puts an emscripten build of cppinterop to use is xeus-cpp.

If you have this built locally, it would be natural to test anything and everything that we can do with the shared build ... even with the static build.

Rather if you get the notebooks working with better benchmarkings and everything works better overall, it gives it much more reason to switch a static build isn't it ?

Okay this might be working on CI, but finally we need to put it to test correct ?

P.S: There are other reasons I say so. Once I heard that xeus-cpp-lite doesn't work in Safari/chrome on an IPhone, I pinged maintainers of all other jupyterlite kernels. And none of the python/r or our cpp kernel work on an IPhone ... so it might not be a xeus-cpp problem at all (the whole running stuff on the phone scenario) and might be a Jupyterlite thing itself.

So if you can use a static link and build xeus-cpp-lite and have it check it through different browsers/devices it would be good.

@anutosh491
Copy link
Collaborator

I would say it would be a good idea to check if this can even be put to use !

@vgvassilev
Copy link
Contributor

We have tests which are mostly okay, right? I agree with your arguments but I think they apply for the case where we switch the deployment from shared to static builds. What do we gain from delaying this further?

TEST(InterpreterTest, Process) {
#ifdef EMSCRIPTEN_STATIC_LIBRARY
GTEST_SKIP() << "Test fails for Emscipten static library build";
#endif
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Like literally Process which is at heart of xeus-cpp's code execution fails ?

Not sure if it makes sense to skip this out of all the possible tests :)

@anutosh491
Copy link
Collaborator

Anyways, feel free to take it in if everything's ready. Let's discuss more when we want to move to a static build.

@mcbarton mcbarton merged commit 3bc692b into compiler-research:main Jun 25, 2025
51 checks passed
@anutosh491
Copy link
Collaborator

Just for the record, I don't think this build can be put to use for xeus-cpp just yet.

Tried it out and we go back to the same issue, why we switched to a shared build in the first place compiler-research/xeus-cpp#159


error: undefined symbol: _ZN4llvm11raw_ostream16SetBufferAndModeEPcmNS0_10BufferKindE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream16SetBufferAndModeEPcmNS0_10BufferKindE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream5writeEPKcm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream5writeEPKcm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream5writeEh (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream5writeEh may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamD2Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamD2Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEPKv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamlsEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEl (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamlsEl may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamlsEm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13ErrorInfoBase2IDE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13ErrorInfoBase2IDE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl11RehashTableEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl11RehashTableEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl15LookupBucketForENS_9StringRefEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl15LookupBucketForENS_9StringRefEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl4hashENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl4hashENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl4initEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl4initEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl9RemoveKeyEPNS_18StringMapEntryBaseE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl9RemoveKeyEPNS_18StringMapEntryBaseE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm14identify_magicENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm14identify_magicENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15SmallVectorBaseIjE13mallocForGrowEPvmmRm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15SmallVectorBaseIjE13mallocForGrowEPvmmRm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15SmallVectorBaseIjE8grow_podEPvmm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15SmallVectorBaseIjE8grow_podEPvmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15allocate_bufferEmm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15allocate_bufferEmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15itaniumDemangleENSt3__217basic_string_viewIcNS0_11char_traitsIcEEEEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15itaniumDemangleENSt3__217basic_string_viewIcNS0_11char_traitsIcEEEEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm17deallocate_bufferEPvmm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm17deallocate_bufferEPvmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm18isCurrentDebugTypeEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm18isCurrentDebugTypeEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm18report_fatal_errorEPKcb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm18report_fatal_errorEPKcb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm19SmallPtrSetImplBase14insert_imp_bigEPKv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm19SmallPtrSetImplBase14insert_imp_bigEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm21logAllUnhandledErrorsENS_5ErrorERNS_11raw_ostreamENS_5TwineE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm21logAllUnhandledErrorsENS_5ErrorERNS_11raw_ostreamENS_5TwineE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm25llvm_unreachable_internalEPKcS1_j (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm25llvm_unreachable_internalEPKcS1_j may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc15ResourceTrackerD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc15ResourceTrackerD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc16ExecutionSession4dumpERNS_11raw_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc16ExecutionSession4dumpERNS_11raw_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc34AbsoluteSymbolsMaterializationUnitC1ENS_8DenseMapINS0_15SymbolStringPtrENS0_17ExecutorSymbolDefENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S4_EEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc34AbsoluteSymbolsMaterializationUnitC1ENS_8DenseMapINS0_15SymbolStringPtrENS0_17ExecutorSymbolDefENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S4_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc5LLJIT25getProcessSymbolsJITDylibEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc5LLJIT25getProcessSymbolsJITDylibEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib10defineImplERNS0_19MaterializationUnitE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib10defineImplERNS0_19MaterializationUnitE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib25getDefaultResourceTrackerEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib25getDefaultResourceTrackerEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib26installMaterializationUnitENSt3__210unique_ptrINS0_19MaterializationUnitENS2_14default_deleteIS4_EEEERNS0_15ResourceTrackerE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib26installMaterializationUnitENSt3__210unique_ptrINS0_19MaterializationUnitENS2_14default_deleteIS4_EEEERNS0_15ResourceTrackerE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib6removeERKNS_8DenseSetINS0_15SymbolStringPtrENS_12DenseMapInfoIS3_vEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib6removeERKNS_8DenseSetINS0_15SymbolStringPtrENS_12DenseMapInfoIS3_vEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylibD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylibD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys14DynamicLibrary24SearchForAddressOfSymbolEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys14DynamicLibrary24SearchForAddressOfSymbolEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs12current_pathERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs12current_pathERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs12is_directoryERKNS_5TwineERb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs12is_directoryERKNS_5TwineERb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs13get_file_typeERKNS_5TwineEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs13get_file_typeERKNS_5TwineEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs15is_symlink_fileERKNS_5TwineERb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs15is_symlink_fileERKNS_5TwineERb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs17getMainExecutableEPKcPv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs17getMainExecutableEPKcPv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs6detail27directory_iterator_destructERNS2_12DirIterStateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs6detail27directory_iterator_destructERNS2_12DirIterStateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs6detail28directory_iterator_constructERNS2_12DirIterStateENS_9StringRefEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs6detail28directory_iterator_constructERNS2_12DirIterStateENS_9StringRefEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs6detail28directory_iterator_incrementERNS2_12DirIterStateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs6detail28directory_iterator_incrementERNS2_12DirIterStateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs9real_pathERKNS_5TwineERNS_15SmallVectorImplIcEEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs9real_pathERKNS_5TwineERNS_15SmallVectorImplIcEEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11is_absoluteERKNS_5TwineENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11is_absoluteERKNS_5TwineENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11is_relativeERKNS_5TwineENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11is_relativeERKNS_5TwineENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11parent_pathENS_9StringRefENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11parent_pathENS_9StringRefENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path12is_separatorEcNS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path12is_separatorEcNS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path13get_separatorENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path13get_separatorENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path14home_directoryERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path14home_directoryERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path15remove_filenameERNS_15SmallVectorImplIcEENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path15remove_filenameERNS_15SmallVectorImplIcEENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path6appendERNS_15SmallVectorImplIcEERKNS_5TwineES7_S7_S7_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path6appendERNS_15SmallVectorImplIcEERKNS_5TwineES7_S7_S7_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path8filenameENS_9StringRefENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path8filenameENS_9StringRefENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys7Process6GetEnvENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys7Process6GetEnvENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm4dbgsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm4dbgsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm4errsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm4errsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APInt12initSlowCaseERKS0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APInt12initSlowCaseERKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APInt12initSlowCaseEyb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APInt12initSlowCaseEyb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APIntC1EjjPKy (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APIntC1EjjPKy may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6APSIntC1ENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6APSIntC1ENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6TripleC1ERKNS_5TwineE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6TripleC1ERKNS_5TwineE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object10ObjectFile16createObjectFileENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object10ObjectFile16createObjectFileENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object15object_categoryEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object15object_categoryEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object23ExportDirectoryEntryRef8moveNextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object23ExportDirectoryEntryRef8moveNextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm9DebugFlagE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm9DebugFlagE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm9ErrorList2IDE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm9ErrorList2IDE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: LLVMInitializeWebAssemblyAsmPrinter (referenced by root reference (e.g. compiled C/C++ code))
warning: To disable errors for undefined symbols use `-sERROR_ON_UNDEFINED_SYMBOLS=0`
warning: _LLVMInitializeWebAssemblyAsmPrinter may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: LLVMInitializeWebAssemblyTarget (referenced by root reference (e.g. compiled C/C++ code))
warning: _LLVMInitializeWebAssemblyTarget may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: LLVMInitializeWebAssemblyTargetInfo (referenced by root reference (e.g. compiled C/C++ code))
warning: _LLVMInitializeWebAssemblyTargetInfo may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: LLVMInitializeWebAssemblyTargetMC (referenced by root reference (e.g. compiled C/C++ code))
warning: _LLVMInitializeWebAssemblyTargetMC may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11StringErrorC1ERKNS_5TwineENSt3__210error_codeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11StringErrorC1ERKNS_5TwineENSt3__210error_codeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream14flush_nonemptyEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream14flush_nonemptyEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream16SetBufferAndModeEPcmNS0_10BufferKindE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream16SetBufferAndModeEPcmNS0_10BufferKindE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream5writeEPKcm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream5writeEPKcm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostream5writeEh (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostream5writeEh may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamD2Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamD2Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEPKv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamlsEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang10ASTContext19createMangleContextEPKNS_10TargetInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang10ASTContext19createMangleContextEPKNS_10TargetInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEl (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm11raw_ostreamlsEl may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11DeclContext17getPrimaryContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext17getPrimaryContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm11raw_ostreamlsEm (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang11DeclContext18collectAllContextsERN4llvm15SmallVectorImplIPS0_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext18collectAllContextsERN4llvm15SmallVectorImplIPS0_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm11raw_ostreamlsEm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11DeclContext7classofEPKNS_4DeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext7classofEPKNS_4DeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11FileManager15getDirectoryRefEN4llvm9StringRefEb (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm13ErrorInfoBase2IDE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11FileManager15getDirectoryRefEN4llvm9StringRefEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm13ErrorInfoBase2IDE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter14createWithCUDAENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEES6_ (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm13StringMapImpl11RehashTableEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter14createWithCUDAENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEES6_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm13StringMapImpl11RehashTableEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter15ParseAndExecuteEN4llvm9StringRefEPNS_5ValueE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter15ParseAndExecuteEN4llvm9StringRefEPNS_5ValueE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl15LookupBucketForENS_9StringRefEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl15LookupBucketForENS_9StringRefEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter18LoadDynamicLibraryEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter18LoadDynamicLibraryEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl4hashENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl4hashENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter18getExecutionEngineEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter18getExecutionEngineEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl4initEj (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang11Interpreter19getCompilerInstanceEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter19getCompilerInstanceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter4UndoEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter4UndoEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter5ParseEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter5ParseEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter6createENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl4initEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang11Interpreter6createENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter7ExecuteERNS_22PartialTranslationUnitE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter7ExecuteERNS_22PartialTranslationUnitE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm13StringMapImpl9RemoveKeyEPNS_18StringMapEntryBaseE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm13StringMapImpl9RemoveKeyEPNS_18StringMapEntryBaseE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11LangOptionsC1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11LangOptionsC1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm14identify_magicENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm14identify_magicENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11ParmVarDecl13getDefaultArgEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11ParmVarDecl13getDefaultArgEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12HeaderSearch13AddSearchPathERKNS_15DirectoryLookupEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12HeaderSearch13AddSearchPathERKNS_15DirectoryLookupEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15SmallVectorBaseIjE13mallocForGrowEPvmmRm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15SmallVectorBaseIjE13mallocForGrowEPvmmRm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult11deletePathsEPNS_12CXXBasePathsE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult11deletePathsEPNS_12CXXBasePathsE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult11resolveKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult11resolveKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15SmallVectorBaseIjE8grow_podEPvmm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15SmallVectorBaseIjE8grow_podEPvmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult9configureEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult9configureEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm15allocate_bufferEmm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm15allocate_bufferEmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clangerror: undefined symbol: _ZN4llvm15itaniumDemangleENSt3__217basic_string_viewIcNS0_11char_traitsIcEEEEb (referenced by root reference (e.g. compiled C/C++ code))
12TemplateNameC1EPNS_12TemplateDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12TemplateNameC1EPNS_12TemplateDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm15itaniumDemangleENSt3__217basic_string_viewIcNS0_11char_traitsIcEEEEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang13MangleContext10mangleNameENS_10GlobalDeclERN4llvm11raw_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang13MangleContext10mangleNameENS_10GlobalDeclERN4llvm11raw_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang13MangleContext20shouldMangleDeclNameEPKNS_9NamedDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang13MangleContext20shouldMangleDeclNameEPKNS_9NamedDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm17deallocate_bufferEPvmm (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang13SourceManager13loadSLocEntryEjPb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang13SourceManager13loadSLocEntryEjPb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm17deallocate_bufferEPvmm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16CompilerInstance20LoadRequestedPluginsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16CompilerInstance20LoadRequestedPluginsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16TemplateArgument12initFromTypeENS_8QualTypeEbb (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm18isCurrentDebugTypeEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16TemplateArgument12initFromTypeENS_8QualTypeEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm18isCurrentDebugTypeEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16TemplateArgumentC1ERKNS_10ASTContextERKN4llvm6APSIntENS_8QualTypeEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16TemplateArgumentC1ERKNS_10ASTContextERKN4llvm6APSIntENS_8QualTypeEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang17ReplCodeCompleter12codeCompleteEPNS_16CompilerInstanceEN4llvm9StringRefEjjPKS1_RNSt3__26vectorINS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEENSC_ISE_EEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang17ReplCodeCompleter12codeCompleteEPNS_16CompilerInstanceEN4llvm9StringRefEjjPKS1_RNSt3__26vectorINS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEENSC_ISE_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm18report_fatal_errorEPKcb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm18report_fatal_errorEPKcb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm19SmallPtrSetImplBase14insert_imp_bigEPKv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm19SmallPtrSetImplBase14insert_imp_bigEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang17computeDependenceEPNS_15OpaqueValueExprE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang17computeDependenceEPNS_15OpaqueValueExprE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang18DeclarationNameLocC1ENS_15DeclarationNameE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang18DeclarationNameLocC1ENS_15DeclarationNameE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang18UsingDirectiveDecl21getNominatedNamespaceEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang18UsingDirectiveDecl21getNominatedNamespaceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm21logAllUnhandledErrorsENS_5ErrorERNS_11raw_ostreamENS_5TwineE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm21logAllUnhandledErrorsENS_5ErrorERNS_11raw_ostreamENS_5TwineE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang19getClangFullVersionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang19getClangFullVersionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang19getOperatorSpellingENS_22OverloadedOperatorKindE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang19getOperatorSpellingENS_22OverloadedOperatorKindE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm25llvm_unreachable_internalEPKcS1_j (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm25llvm_unreachable_internalEPKcS1_j may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang20OverloadCandidateSet17destroyCandidatesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm2cl23ParseCommandLineOptionsEiPKPKcNS_9StringRefEPNS_11raw_ostreamES2_b may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang20OverloadCandidateSet17destroyCandidatesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang20OverloadCandidateSet18BestViableFunctionERNS_4SemaENS_14SourceLocationERPNS_17OverloadCandidateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang20OverloadCandidateSet18BestViableFunctionERNS_4SemaENS_14SourceLocationERPNS_17OverloadCandidateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder14CreateCudaHostEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang26IncrementalCompilerBuilder14CreateCudaHostEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc15ResourceTrackerD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc15ResourceTrackerD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc16ExecutionSession4dumpERNS_11raw_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc16ExecutionSession4dumpERNS_11raw_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder16CreateCudaDeviceEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3orc34AbsoluteSymbolsMaterializationUnitC1ENS_8DenseMapINS0_15SymbolStringPtrENS0_17ExecutorSymbolDefENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S4_EEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc34AbsoluteSymbolsMaterializationUnitC1ENS_8DenseMapINS0_15SymbolStringPtrENS0_17ExecutorSymbolDefENS_12DenseMapInfoIS3_vEENS_6detail12DenseMapPairIS3_S4_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang26IncrementalCompilerBuilder16CreateCudaDeviceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder9CreateCppEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3orc5LLJIT25getProcessSymbolsJITDylibEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang26IncrementalCompilerBuilder9CreateCppEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl17castToDeclContextEPKS0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl17castToDeclContextEPKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3orc5LLJIT25getProcessSymbolsJITDylibEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl19castFromDeclContextEPKNS_11DeclContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl19castFromDeclContextEPKNS_11DeclContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl7addAttrEPNS_4AttrE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl7addAttrEPNS_4AttrE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib10defineImplERNS0_19MaterializationUnitE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang4Expr14IgnoreImpCastsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Expr14IgnoreImpCastsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3orc8JITDylib10defineImplERNS0_19MaterializationUnitE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema10LookupNameERNS_12LookupResultEPNS_5ScopeEbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema10LookupNameERNS_12LookupResultEPNS_5ScopeEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib25getDefaultResourceTrackerEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang4Sema13IsDerivedFromENS_14SourceLocationENS_8QualTypeES2_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib25getDefaultResourceTrackerEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang4Sema13IsDerivedFromENS_14SourceLocationENS_8QualTypeES2_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylib26installMaterializationUnitENSt3__210unique_ptrINS0_19MaterializationUnitENS2_14default_deleteIS4_EEEERNS0_15ResourceTrackerE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylib26installMaterializationUnitENSt3__210unique_ptrINS0_19MaterializationUnitENS2_14default_deleteIS4_EEEERNS0_15ResourceTrackerE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema17CheckLookupAccessERKNS_12LookupResultE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema17CheckLookupAccessERKNS_12LookupResultE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema18CheckVarTemplateIdEPNS_15VarTemplateDeclENS_14SourceLocationES3_RKNS_24TemplateArgumentListInfoE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3orc8JITDylib6removeERKNS_8DenseSetINS0_15SymbolStringPtrENS_12DenseMapInfoIS3_vEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema18CheckVarTemplateIdEPNS_15VarTemplateDeclENS_14SourceLocationES3_RKNS_24TemplateArgumentListInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3orc8JITDylib6removeERKNS_8DenseSetINS0_15SymbolStringPtrENS_12DenseMapInfoIS3_vEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema18LookupConstructorsEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema18LookupConstructorsEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3orc8JITDylibD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3orc8JITDylibD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19CheckTemplateIdTypeENS_12TemplateNameENS_14SourceLocationERNS_24TemplateArgumentListInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19CheckTemplateIdTypeENS_12TemplateNameENS_14SourceLocationERNS_24TemplateArgumentListInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys14DynamicLibrary24SearchForAddressOfSymbolEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys14DynamicLibrary24SearchForAddressOfSymbolEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19LookupQualifiedNameERNS_12LookupResultEPNS_11DeclContextEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19LookupQualifiedNameERNS_12LookupResultEPNS_11DeclContextEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19RequireCompleteTypeENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19RequireCompleteTypeENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema20AddOverloadCandidateEPNS_12FunctionDeclENS_14DeclAccessPairEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbbNS_8CallExpr11ADLCallKindENS4_15MutableArrayRefINS_26ImplicitConversionSequenceEEENS_27OverloadCandidateParamOrderEbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema20AddOverloadCandidateEPNS_12FunctionDeclENS_14DeclAccessPairEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbbNS_8CallExpr11ADLCallKindENS4_15MutableArrayRefINS_26ImplicitConversionSequenceEEENS_27OverloadCandidateParamOrderEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs12current_pathERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs12current_pathERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23DeduceTemplateArgumentsEPNS_20FunctionTemplateDeclEPNS_24TemplateArgumentListInfoERPNS_12FunctionDeclERNS_4sema21TemplateDeductionInfoEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23DeduceTemplateArgumentsEPNS_20FunctionTemplateDeclEPNS_24TemplateArgumentListInfoERPNS_12FunctionDeclERNS_4sema21TemplateDeductionInfoEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23DiagnoseAmbiguousLookupERNS_12LookupResultE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23DiagnoseAmbiguousLookupERNS_12LookupResultE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23RequireCompleteTypeImplENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEPNS0_13TypeDiagnoserE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23RequireCompleteTypeImplENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEPNS0_13TypeDiagnoserE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema24LookupDefaultConstructorEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema24LookupDefaultConstructorEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema28AddTemplateOverloadCandidateEPNS_20FunctionTemplateDeclENS_14DeclAccessPairEPNS_24TemplateArgumentListInfoEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbNS_8CallExpr11ADLCallKindENS_27OverloadCandidateParamOrderEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema28AddTemplateOverloadCandidateEPNS_20FunctionTemplateDeclENS_14DeclAccessPairEPNS_24TemplateArgumentListInfoEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbNS_8CallExpr11ADLCallKindENS_27OverloadCandidateParamOrderEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs12is_directoryERKNS_5TwineERb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs12is_directoryERKNS_5TwineERb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29InstantiateFunctionDefinitionENS_14SourceLocationEPNS_12FunctionDeclEbbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29InstantiateFunctionDefinitionENS_14SourceLocationEPNS_12FunctionDeclEbbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs13get_file_typeERKNS_5TwineEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs13get_file_typeERKNS_5TwineEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29InstantiateVariableDefinitionENS_14SourceLocationEPNS_7VarDeclEbbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29InstantiateVariableDefinitionENS_14SourceLocationEPNS_7VarDeclEbbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs15is_symlink_fileERKNS_5TwineERb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs15is_symlink_fileERKNS_5TwineERb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29getTrivialTemplateArgumentLocERKNS_16TemplateArgumentENS_8QualTypeENS_14SourceLocationEPNS_9NamedDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29getTrivialTemplateArgumentLocERKNS_16TemplateArgumentENS_8QualTypeENS_14SourceLocationEPNS_9NamedDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs17getMainExecutableEPKcPv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs17getMainExecutableEPKcPv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema33ForceDeclarationOfImplicitMembersEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3sys2fs6detail27directory_iterator_destructERNS2_12DirIterStateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema33ForceDeclarationOfImplicitMembersEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3sys2fs6detail27directory_iterator_destructERNS2_12DirIterStateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Stmt12addStmtClassENS0_9StmtClassE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3sys2fs6detail28directory_iterator_constructERNS2_12DirIterStateENS_9StringRefEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Stmt12addStmtClassENS0_9StmtClassE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3sys2fs6detail28directory_iterator_constructERNS2_12DirIterStateENS_9StringRefEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Stmt17StatisticsEnabledE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Stmt17StatisticsEnabledE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang5ValueC1ERKS0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang5ValueC1ERKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs6detail28directory_iterator_incrementERNS2_12DirIterStateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys2fs6detail28directory_iterator_incrementERNS2_12DirIterStateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang5ValueD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang5ValueD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang7VarDecl7getInitEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang7VarDecl7getInitEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys2fs9real_pathERKNS_5TwineERNS_15SmallVectorImplIcEEb (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang8QualType16getDesugaredTypeES0_RKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8QualType16getDesugaredTypeES0_RKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3sys2fs9real_pathERKNS_5TwineERNS_15SmallVectorImplIcEEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang8QualType27getSplitUnqualifiedTypeImplES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8QualType27getSplitUnqualifiedTypeImplES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang8UsedAttr14CreateImplicitERNS_10ASTContextENS_11SourceRangeENS0_8SpellingE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8UsedAttr14CreateImplicitERNS_10ASTContextENS_11SourceRangeENS0_8SpellingE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11is_absoluteERKNS_5TwineENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11is_absoluteERKNS_5TwineENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang9NamedDecl21getUnderlyingDeclImplEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang9NamedDecl21getUnderlyingDeclImplEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11is_relativeERKNS_5TwineENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11is_relativeERKNS_5TwineENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm11GlobalValue13isDeclarationEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm11GlobalValue13isDeclarationEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path11parent_pathENS_9StringRefENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK4llvm13StringMapImpl7FindKeyENS_9StringRefEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path11parent_pathENS_9StringRefENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK4llvm13StringMapImpl7FindKeyENS_9StringRefEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm19SmallPtrSetImplBase6doFindEPKv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN4llvm3sys4path12is_separatorEcNS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path12is_separatorEcNS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK4llvm19SmallPtrSetImplBase6doFindEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path13get_separatorENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK4llvm3sys2fs15directory_entry6statusEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path13get_separatorENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK4llvm3sys2fs15directory_entry6statusEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path14home_directoryERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK4llvm5APInt11sextOrTruncEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path14home_directoryERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK4llvm5APInt11sextOrTruncEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt11zextOrTruncEj (referenced by root reference (e.g. compileerror: undefined symbol: _ZN4llvm3sys4path15remove_filenameERNS_15SmallVectorImplIcEENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
d C/C++ code))
warning: __ZNK4llvm5APInt11zextOrTruncEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN4llvm3sys4path15remove_filenameERNS_15SmallVectorImplIcEENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt24countLeadingOnesSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt24countLeadingOnesSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt25countLeadingZerosSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt25countLeadingZerosSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Error19fatalUncheckedErrorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Error19fatalUncheckedErrorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path6appendERNS_15SmallVectorImplIcEERKNS_5TwineES7_S7_S7_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path6appendERNS_15SmallVectorImplIcEERKNS_5TwineES7_S7_S7_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Twine8toVectorERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Twine8toVectorERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys4path8filenameENS_9StringRefENS1_5StyleE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys4path8filenameENS_9StringRefENS1_5StyleE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Value7getNameEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Value7getNameEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm3sys7Process6GetEnvENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm3sys7Process6GetEnvENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object14COFFObjectFile20export_directory_endEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object14COFFObjectFile20export_directory_endEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object14COFFObjectFile22export_directory_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object14COFFObjectFile22export_directory_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm4dbgsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm4dbgsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile13load_commandsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile13load_commandsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm4errsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm4errsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile15getRpathCommandERKNS1_15LoadCommandInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile15getRpathCommandERKNS1_15LoadCommandInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APInt12initSlowCaseERKS0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APInt12initSlowCaseERKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile21getDylibIDLoadCommandERKNS1_15LoadCommandInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile21getDylibIDLoadCommandERKNS1_15LoadCommandInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APInt12initSlowCaseEyb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APInt12initSlowCaseEyb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object23ExportDirectoryEntryRef13getSymbolNameERNS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object23ExportDirectoryEntryRef13getSymbolNameERNS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm5APIntC1EjjPKy (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm5APIntC1EjjPKy may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6APSIntC1ENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6APSIntC1ENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object23ExportDirectoryEntryRefeqERKS1_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object23ExportDirectoryEntryRefeqERKS1_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6TripleC1ERKNS_5TwineE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6TripleC1ERKNS_5TwineE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object10ObjectFile16createObjectFileENS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object10ObjectFile16createObjectFileENS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object15object_categoryEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object15object_categoryEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm6object23ExportDirectoryEntryRef8moveNextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm6object23ExportDirectoryEntryRef8moveNextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm9DebugFlagE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm9DebugFlagE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN4llvm9ErrorList2IDE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN4llvm9ErrorList2IDE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef16find_last_not_ofES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef16find_last_not_ofES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef17find_first_not_ofES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef17find_first_not_ofES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef17find_first_not_ofEcm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef17find_first_not_ofEcm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef23starts_with_insensitiveES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef23starts_with_insensitiveES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef4findES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef4findES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef5rfindES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef5rfindES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef5splitERNS_15SmallVectorImplIS0_EES0_ib (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef5splitERNS_15SmallVectorImplIS0_EES0_ib may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext11getIntWidthENS_8QualTypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext11getIntWidthENS_8QualTypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext11getTypeInfoEPKNS_4TypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext11getTypeInfoEPKNS_4TypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getComplexTypeENS_8QualTypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getComplexTypeENS_8QualTypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getFieldOffsetEPKNS_9ValueDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getFieldOffsetEPKNS_9ValueDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getTagDeclTypeEPKNS_7TagDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getTagDeclTypeEPKNS_7TagDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext18getASTRecordLayoutEPKNS_10RecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext18getASTRecordLayoutEPKNS_10RecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang10ASTContext19createMangleContextEPKNS_10TargetInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang10ASTContext19createMangleContextEPKNS_10TargetInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext19getTypeDeclTypeSlowEPKNS_8TypeDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext19getTypeDeclTypeSlowEPKNS_8TypeDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext19toCharUnitsFromBitsEx (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext19toCharUnitsFromBitsEx may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11DeclContext17getPrimaryContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext17getPrimaryContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext24GetGVALinkageForVariableEPKNS_7VarDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext24GetGVALinkageForVariableEPKNS_7VarDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11DeclContext18collectAllContextsERN4llvm15SmallVectorImplIPS0_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext18collectAllContextsERN4llvm15SmallVectorImplIPS0_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10RecordDecl11field_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10RecordDecl11field_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11DeclContext7classofEPKNS_4DeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11DeclContext7classofEPKNS_4DeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext11decls_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext11decls_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11FileManager15getDirectoryRefEN4llvm9StringRefEb (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK5clang11DeclContext13udir_iteratordeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext13udir_iteratordeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang11FileManager15getDirectoryRefEN4llvm9StringRefEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext16using_directivesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext16using_directivesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext20isTransparentContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext20isTransparentContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter14createWithCUDAENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEES6_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter14createWithCUDAENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEES6_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext6lookupENS_15DeclarationNameE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext6lookupENS_15DeclarationNameE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11Interpreter16getSymbolAddressEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11Interpreter16getSymbolAddressEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11Interpreter30getSymbolAddressFromLinkerNameEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11Interpreter30getSymbolAddressFromLinkerNameEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter15ParseAndExecuteEN4llvm9StringRefEPNS_5ValueE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK5clang11ParmVarDecl13hasDefaultArgEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11ParmVarDecl13hasDefaultArgEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang11Interpreter15ParseAndExecuteEN4llvm9StringRefEPNS_5ValueE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11ParmVarDecl15getOriginalTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11ParmVarDecl15getOriginalTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl10isVariadicEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl10isVariadicEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter18LoadDynamicLibraryEPKc (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter18LoadDynamicLibraryEPKc may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl12getNumParamsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl12getNumParamsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter18getExecutionEngineEv (referenced by root reference (e.g. compiled error: undefined symbol: _ZNK5clang12FunctionDecl16getTemplatedKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl16getTemplatedKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
C/C++ code))
error: undefined symbol: _ZNK5clang12FunctionDecl21getOverloadedOperatorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl21getOverloadedOperatorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang11Interpreter18getExecutionEngineEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl23getMinRequiredArgumentsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl23getMinRequiredArgumentsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl23isTemplateInstantiationEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl23isTemplateInstantiationEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl24isImplicitlyInstantiableEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl24isImplicitlyInstantiableEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter19getCompilerInstanceEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter19getCompilerInstanceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl29getTemplateSpecializationKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl29getTemplateSpecializationKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter4UndoEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter4UndoEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl31getTemplateInstantiationPatternEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl31getTemplateInstantiationPatternEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter5ParseEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter5ParseEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter6createENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter6createENSt3__210unique_ptrINS_16CompilerInstanceENS1_14default_deleteIS3_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11Interpreter7ExecuteERNS_22PartialTranslationUnitE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11Interpreter7ExecuteERNS_22PartialTranslationUnitE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl9isDefinedERPKS0_b (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang11LangOptionsC1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11LangOptionsC1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK5clang12FunctionDecl9isDefinedERPKS0_b may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang11ParmVarDecl13getDefaultArgEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang11ParmVarDecl13getDefaultArgEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12HeaderSearch13AddSearchPathERKNS_15DirectoryLookupEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12HeaderSearch13AddSearchPathERKNS_15DirectoryLookupEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12LookupResult21checkDebugAssumptionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12LookupResult21checkDebugAssumptionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult11deletePathsEPNS_12CXXBasePathsE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult11deletePathsEPNS_12CXXBasePathsE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXMethodDecl23size_overridden_methodsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXMethodDecl23size_overridden_methodsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXMethodDecl8isStaticEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXMethodDecl8isStaticEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult11resolveKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult11resolveKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl11forallBasesEN4llvm12function_refIFbPKS0_EEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl11forallBasesEN4llvm12function_refIFbPKS0_EEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang12LookupResult9configureEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang12LookupResult9configureEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl13getDestructorEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang12TemplateNameC1EPNS_12TemplateDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl13getDestructorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang12TemplateNameC1EPNS_12TemplateDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl13isDerivedFromEPKS0_RNS_12CXXBasePathsE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl13isDerivedFromEPKS0_RNS_12CXXBasePathsE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang13MangleContext10mangleNameENS_10GlobalDeclERN4llvm11raw_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang13MangleContext10mangleNameENS_10GlobalDeclERN4llvm11raw_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl14DefinitionData16getBasesSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl14DefinitionData16getBasesSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl41lambdaIsDefaultConstructibleAndAssignableEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl41lambdaIsDefaultConstructibleAndAssignableEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang15DeclarationName11getAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang13MangleContext20shouldMangleDeclNameEPKNS_9NamedDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang15DeclarationName11getAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang13MangleContext20shouldMangleDeclNameEPKNS_9NamedDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang18CXXConstructorDecl20isDefaultConstructorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang18CXXConstructorDecl20isDefaultConstructorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang13SourceManager13loadSLocEntryEjPb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang13SourceManager13loadSLocEntryEjPb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl11getLangOptsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl11getLangOptsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl13getASTContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl13getASTContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl22AccessDeclContextCheckEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl22AccessDeclContextCheckEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl4dumpEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl4dumpEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16CompilerInstance20LoadRequestedPluginsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16CompilerInstance20LoadRequestedPluginsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyEjb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyEjb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl8getAttrsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl8getAttrsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Stmt11printPrettyERN4llvm11raw_ostreamEPNS_13PrinterHelperERKNS_14PrintingPolicyEjNS1_9StringRefEPKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Stmt11printPrettyERN4llvm11raw_ostreamEPNS_13PrinterHelperERKNS_14PrintingPolicyEjNS1_9StringRefEPKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14getPointeeTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14getPointeeTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14isFloatingTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14isFloatingTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14isIntegralTypeERKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14isIntegralTypeERKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type18getAsCXXRecordDeclEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type18getAsCXXRecordDeclEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type27getUnqualifiedDesugaredTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type27getUnqualifiedDesugaredTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type29getArrayElementTypeNoTypeQualEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type29getArrayElementTypeNoTypeQualEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type5getAsINS_11TypedefTypeEEEPKT_v (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type5getAsINS_11TypedefTypeEEEPKT_v may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type5getAsINS_26TemplateSpecializationTypeEEEPKT_v (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type5getAsINS_26TemplateSpecializationTypeEEEPKT_v may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7TagDecl13getDefinitionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7TagDecl13getDefinitionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16TemplateArgument12initFromTypeENS_8QualTypeEbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16TemplateArgument12initFromTypeENS_8QualTypeEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang16TemplateArgumentC1ERKNS_10ASTContextERKN4llvm6APSIntENS_8QualTypeEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang16TemplateArgumentC1ERKNS_10ASTContextERKN4llvm6APSIntENS_8QualTypeEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7TagType7getDeclEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7TagType7getDeclEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7VarDecl13evaluateValueEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7VarDecl13evaluateValueEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang17ReplCodeCompleter12codeCompleteEPNS_16CompilerInstanceEN4llvm9StringRefEjjPKS1_RNSt3__26vectorINS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEENSC_ISE_EEEE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK5clang7VarDecl7hasInitEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang17ReplCodeCompleter12codeCompleteEPNS_16CompilerInstanceEN4llvm9StringRefEjjPKS1_RNSt3__26vectorINS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEENSC_ISE_EEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK5clang7VarDecl7hasInitEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang17computeDependenceEPNS_15OpaqueValueExprE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang17computeDependenceEPNS_15OpaqueValueExprE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang18DeclarationNameLocC1ENS_15DeclarationNameE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang18DeclarationNameLocC1ENS_15DeclarationNameE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang18UsingDirectiveDecl21getNominatedNamespaceEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang18UsingDirectiveDecl21getNominatedNamespaceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType11getAsStringERKNS_14PrintingPolicyE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType11getAsStringERKNS_14PrintingPolicyE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang19getClangFullVersionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang19getClangFullVersionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType11getAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType11getAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang19getOperatorSpellingENS_22OverloadedOperatorKindE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang19getOperatorSpellingENS_22OverloadedOperatorKindE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang20OverloadCandidateSet17destroyCandidatesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang20OverloadCandidateSet17destroyCandidatesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType19getAsStringInternalERNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14PrintingPolicyE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType19getAsStringInternalERNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14PrintingPolicyE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang20OverloadCandidateSet18BestViableFunctionERNS_4SemaENS_14SourceLocationERPNS_17OverloadCandidateE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang20OverloadCandidateSet18BestViableFunctionERNS_4SemaENS_14SourceLocationERPNS_17OverloadCandidateE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyERKNS1_5TwineEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyERKNS1_5TwineEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder14CreateCudaHostEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang26IncrementalCompilerBuilder14CreateCudaHostEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType9isPODTypeERKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder16CreateCudaDeviceEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType9isPODTypeERKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZN5clang26IncrementalCompilerBuilder16CreateCudaDeviceEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang26IncrementalCompilerBuilder9CreateCppEv (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK5clang9FieldDecl24isAnonymousStructOrUnionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang26IncrementalCompilerBuilder9CreateCppEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK5clang9FieldDecl24isAnonymousStructOrUnionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl17castToDeclContextEPKS0_ (referenced by root reference (e.g. compiled C/C++ code))
error: undefined symbol: _ZNK5clang9NamedDecl24getQualifiedNameAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl17castToDeclContextEPKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
warning: __ZNK5clang9NamedDecl24getQualifiedNameAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl19castFromDeclContextEPKNS_11DeclContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl19castFromDeclContextEPKNS_11DeclContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Decl7addAttrEPNS_4AttrE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Decl7addAttrEPNS_4AttrE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Expr14IgnoreImpCastsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Expr14IgnoreImpCastsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema10LookupNameERNS_12LookupResultEPNS_5ScopeEbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema10LookupNameERNS_12LookupResultEPNS_5ScopeEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema13IsDerivedFromENS_14SourceLocationENS_8QualTypeES2_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema13IsDerivedFromENS_14SourceLocationENS_8QualTypeES2_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZTVN4llvm18raw_string_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZTVN4llvm18raw_string_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema17CheckLookupAccessERKNS_12LookupResultE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema17CheckLookupAccessERKNS_12LookupResultE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZTVN4llvm9ErrorListE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZTVN4llvm9ErrorListE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema18CheckVarTemplateIdEPNS_15VarTemplateDeclENS_14SourceLocationES3_RKNS_24TemplateArgumentListInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema18CheckVarTemplateIdEPNS_15VarTemplateDeclENS_14SourceLocationES3_RKNS_24TemplateArgumentListInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema18LookupConstructorsEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema18LookupConstructorsEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19CheckTemplateIdTypeENS_12TemplateNameENS_14SourceLocationERNS_24TemplateArgumentListInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19CheckTemplateIdTypeENS_12TemplateNameENS_14SourceLocationERNS_24TemplateArgumentListInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19LookupQualifiedNameERNS_12LookupResultEPNS_11DeclContextEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19LookupQualifiedNameERNS_12LookupResultEPNS_11DeclContextEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema19RequireCompleteTypeENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema19RequireCompleteTypeENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema20AddOverloadCandidateEPNS_12FunctionDeclENS_14DeclAccessPairEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbbNS_8CallExpr11ADLCallKindENS4_15MutableArrayRefINS_26ImplicitConversionSequenceEEENS_27OverloadCandidateParamOrderEbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema20AddOverloadCandidateEPNS_12FunctionDeclENS_14DeclAccessPairEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbbNS_8CallExpr11ADLCallKindENS4_15MutableArrayRefINS_26ImplicitConversionSequenceEEENS_27OverloadCandidateParamOrderEbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23DeduceTemplateArgumentsEPNS_20FunctionTemplateDeclEPNS_24TemplateArgumentListInfoERPNS_12FunctionDeclERNS_4sema21TemplateDeductionInfoEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23DeduceTemplateArgumentsEPNS_20FunctionTemplateDeclEPNS_24TemplateArgumentListInfoERPNS_12FunctionDeclERNS_4sema21TemplateDeductionInfoEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23DiagnoseAmbiguousLookupERNS_12LookupResultE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23DiagnoseAmbiguousLookupERNS_12LookupResultE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema23RequireCompleteTypeImplENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEPNS0_13TypeDiagnoserE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema23RequireCompleteTypeImplENS_14SourceLocationENS_8QualTypeENS0_16CompleteTypeKindEPNS0_13TypeDiagnoserE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema24LookupDefaultConstructorEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema24LookupDefaultConstructorEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema28AddTemplateOverloadCandidateEPNS_20FunctionTemplateDeclENS_14DeclAccessPairEPNS_24TemplateArgumentListInfoEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbNS_8CallExpr11ADLCallKindENS_27OverloadCandidateParamOrderEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema28AddTemplateOverloadCandidateEPNS_20FunctionTemplateDeclENS_14DeclAccessPairEPNS_24TemplateArgumentListInfoEN4llvm8ArrayRefIPNS_4ExprEEERNS_20OverloadCandidateSetEbbbNS_8CallExpr11ADLCallKindENS_27OverloadCandidateParamOrderEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29InstantiateFunctionDefinitionENS_14SourceLocationEPNS_12FunctionDeclEbbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29InstantiateFunctionDefinitionENS_14SourceLocationEPNS_12FunctionDeclEbbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29InstantiateVariableDefinitionENS_14SourceLocationEPNS_7VarDeclEbbb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29InstantiateVariableDefinitionENS_14SourceLocationEPNS_7VarDeclEbbb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema29getTrivialTemplateArgumentLocERKNS_16TemplateArgumentENS_8QualTypeENS_14SourceLocationEPNS_9NamedDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema29getTrivialTemplateArgumentLocERKNS_16TemplateArgumentENS_8QualTypeENS_14SourceLocationEPNS_9NamedDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Sema33ForceDeclarationOfImplicitMembersEPNS_13CXXRecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Sema33ForceDeclarationOfImplicitMembersEPNS_13CXXRecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Stmt12addStmtClassENS0_9StmtClassE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Stmt12addStmtClassENS0_9StmtClassE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang4Stmt17StatisticsEnabledE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang4Stmt17StatisticsEnabledE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang5ValueC1ERKS0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang5ValueC1ERKS0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang5ValueD1Ev (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang5ValueD1Ev may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang7VarDecl7getInitEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang7VarDecl7getInitEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang8QualType16getDesugaredTypeES0_RKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8QualType16getDesugaredTypeES0_RKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang8QualType27getSplitUnqualifiedTypeImplES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8QualType27getSplitUnqualifiedTypeImplES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang8UsedAttr14CreateImplicitERNS_10ASTContextENS_11SourceRangeENS0_8SpellingE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang8UsedAttr14CreateImplicitERNS_10ASTContextENS_11SourceRangeENS0_8SpellingE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZN5clang9NamedDecl21getUnderlyingDeclImplEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZN5clang9NamedDecl21getUnderlyingDeclImplEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm11GlobalValue13isDeclarationEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm11GlobalValue13isDeclarationEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm13StringMapImpl7FindKeyENS_9StringRefEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm13StringMapImpl7FindKeyENS_9StringRefEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm19SmallPtrSetImplBase6doFindEPKv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm19SmallPtrSetImplBase6doFindEPKv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm3sys2fs15directory_entry6statusEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm3sys2fs15directory_entry6statusEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt11sextOrTruncEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt11sextOrTruncEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt11zextOrTruncEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt11zextOrTruncEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt24countLeadingOnesSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt24countLeadingOnesSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5APInt25countLeadingZerosSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5APInt25countLeadingZerosSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Error19fatalUncheckedErrorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Error19fatalUncheckedErrorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Twine8toVectorERNS_15SmallVectorImplIcEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Twine8toVectorERNS_15SmallVectorImplIcEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm5Value7getNameEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm5Value7getNameEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object14COFFObjectFile20export_directory_endEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object14COFFObjectFile20export_directory_endEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object14COFFObjectFile22export_directory_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object14COFFObjectFile22export_directory_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile13load_commandsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile13load_commandsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile15getRpathCommandERKNS1_15LoadCommandInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile15getRpathCommandERKNS1_15LoadCommandInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object15MachOObjectFile21getDylibIDLoadCommandERKNS1_15LoadCommandInfoE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object15MachOObjectFile21getDylibIDLoadCommandERKNS1_15LoadCommandInfoE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object23ExportDirectoryEntryRef13getSymbolNameERNS_9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object23ExportDirectoryEntryRef13getSymbolNameERNS_9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object23ExportDirectoryEntryRefeqERKS1_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object23ExportDirectoryEntryRefeqERKS1_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb0EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE0ELb1EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb0EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE12toMappedAddrEyNS_12function_refIFNS_5ErrorERKNS_5TwineEEEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE14dynamicEntriesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE14dynamicEntriesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE23getStringTableForSymtabERKNS0_13Elf_Shdr_ImplIS4_EE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE8sectionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm6object7ELFFileINS0_7ELFTypeILNS_10endiannessE1ELb1EEEE8sectionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef16find_last_not_ofES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef16find_last_not_ofES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef17find_first_not_ofES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef17find_first_not_ofES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef17find_first_not_ofEcm (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef17find_first_not_ofEcm may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef23starts_with_insensitiveES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef23starts_with_insensitiveES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef4findES0_m (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef4findES0_m may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef5rfindES0_ (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef5rfindES0_ may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK4llvm9StringRef5splitERNS_15SmallVectorImplIS0_EES0_ib (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK4llvm9StringRef5splitERNS_15SmallVectorImplIS0_EES0_ib may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext11getIntWidthENS_8QualTypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext11getIntWidthENS_8QualTypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext11getTypeInfoEPKNS_4TypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext11getTypeInfoEPKNS_4TypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getComplexTypeENS_8QualTypeE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getComplexTypeENS_8QualTypeE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getFieldOffsetEPKNS_9ValueDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getFieldOffsetEPKNS_9ValueDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext14getTagDeclTypeEPKNS_7TagDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext14getTagDeclTypeEPKNS_7TagDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext18getASTRecordLayoutEPKNS_10RecordDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext18getASTRecordLayoutEPKNS_10RecordDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext19getTypeDeclTypeSlowEPKNS_8TypeDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext19getTypeDeclTypeSlowEPKNS_8TypeDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext19toCharUnitsFromBitsEx (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext19toCharUnitsFromBitsEx may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10ASTContext24GetGVALinkageForVariableEPKNS_7VarDeclE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10ASTContext24GetGVALinkageForVariableEPKNS_7VarDeclE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang10RecordDecl11field_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang10RecordDecl11field_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext11decls_beginEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext11decls_beginEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext13udir_iteratordeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext13udir_iteratordeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext16using_directivesEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext16using_directivesEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext20isTransparentContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext20isTransparentContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11DeclContext6lookupENS_15DeclarationNameE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11DeclContext6lookupENS_15DeclarationNameE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11Interpreter16getSymbolAddressEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11Interpreter16getSymbolAddressEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11Interpreter30getSymbolAddressFromLinkerNameEN4llvm9StringRefE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11Interpreter30getSymbolAddressFromLinkerNameEN4llvm9StringRefE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11ParmVarDecl13hasDefaultArgEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11ParmVarDecl13hasDefaultArgEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang11ParmVarDecl15getOriginalTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang11ParmVarDecl15getOriginalTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl10isVariadicEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl10isVariadicEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl12getNumParamsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl12getNumParamsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl16getTemplatedKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl16getTemplatedKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl21getOverloadedOperatorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl21getOverloadedOperatorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl23getMinRequiredArgumentsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl23getMinRequiredArgumentsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl23isTemplateInstantiationEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl23isTemplateInstantiationEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl24isImplicitlyInstantiableEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl24isImplicitlyInstantiableEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl29getTemplateSpecializationKindEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl29getTemplateSpecializationKindEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl31getTemplateInstantiationPatternEb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl31getTemplateInstantiationPatternEb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12FunctionDecl9isDefinedERPKS0_b (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12FunctionDecl9isDefinedERPKS0_b may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang12LookupResult21checkDebugAssumptionsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang12LookupResult21checkDebugAssumptionsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXMethodDecl23size_overridden_methodsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXMethodDecl23size_overridden_methodsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXMethodDecl8isStaticEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXMethodDecl8isStaticEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl11forallBasesEN4llvm12function_refIFbPKS0_EEE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl11forallBasesEN4llvm12function_refIFbPKS0_EEE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl13getDestructorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl13getDestructorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl13isDerivedFromEPKS0_RNS_12CXXBasePathsE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl13isDerivedFromEPKS0_RNS_12CXXBasePathsE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl14DefinitionData16getBasesSlowCaseEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl14DefinitionData16getBasesSlowCaseEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang13CXXRecordDecl41lambdaIsDefaultConstructibleAndAssignableEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang13CXXRecordDecl41lambdaIsDefaultConstructibleAndAssignableEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang15DeclarationName11getAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang15DeclarationName11getAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang18CXXConstructorDecl20isDefaultConstructorEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang18CXXConstructorDecl20isDefaultConstructorEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl11getLangOptsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl11getLangOptsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl13getASTContextEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl13getASTContextEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl22AccessDeclContextCheckEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl22AccessDeclContextCheckEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl4dumpEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl4dumpEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyEjb (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyEjb may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Decl8getAttrsEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Decl8getAttrsEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Stmt11printPrettyERN4llvm11raw_ostreamEPNS_13PrinterHelperERKNS_14PrintingPolicyEjNS1_9StringRefEPKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Stmt11printPrettyERN4llvm11raw_ostreamEPNS_13PrinterHelperERKNS_14PrintingPolicyEjNS1_9StringRefEPKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14getPointeeTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14getPointeeTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14isFloatingTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14isFloatingTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type14isIntegralTypeERKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type14isIntegralTypeERKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type18getAsCXXRecordDeclEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type18getAsCXXRecordDeclEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type27getUnqualifiedDesugaredTypeEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type27getUnqualifiedDesugaredTypeEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type29getArrayElementTypeNoTypeQualEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type29getArrayElementTypeNoTypeQualEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type5getAsINS_11TypedefTypeEEEPKT_v (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type5getAsINS_11TypedefTypeEEEPKT_v may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang4Type5getAsINS_26TemplateSpecializationTypeEEEPKT_v (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang4Type5getAsINS_26TemplateSpecializationTypeEEEPKT_v may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7TagDecl13getDefinitionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7TagDecl13getDefinitionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7TagType7getDeclEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7TagType7getDeclEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7VarDecl13evaluateValueEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7VarDecl13evaluateValueEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang7VarDecl7hasInitEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang7VarDecl7hasInitEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType11getAsStringERKNS_14PrintingPolicyE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType11getAsStringERKNS_14PrintingPolicyE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType11getAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType11getAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType19getAsStringInternalERNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14PrintingPolicyE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType19getAsStringInternalERNSt3__212basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_14PrintingPolicyE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyERKNS1_5TwineEj (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType5printERN4llvm11raw_ostreamERKNS_14PrintingPolicyERKNS1_5TwineEj may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang8QualType9isPODTypeERKNS_10ASTContextE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang8QualType9isPODTypeERKNS_10ASTContextE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang9FieldDecl24isAnonymousStructOrUnionEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang9FieldDecl24isAnonymousStructOrUnionEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZNK5clang9NamedDecl24getQualifiedNameAsStringEv (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZNK5clang9NamedDecl24getQualifiedNameAsStringEv may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZTVN4llvm18raw_string_ostreamE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZTVN4llvm18raw_string_ostreamE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
error: undefined symbol: _ZTVN4llvm9ErrorListE (referenced by root reference (e.g. compiled C/C++ code))
warning: __ZTVN4llvm9ErrorListE may need to be added to EXPORTED_FUNCTIONS if it arrives from a system library
Error: Aborting compilation due to previous errors
Error: Aborting compilation due to previous errors
em++: error: '/Users/anutosh491/micromamba/envs/xeus-cpp-wasm-build/bin/node /Users/anutosh491/micromamba/envs/xeus-cpp-wasm-build/opt/emsdk/upstream/emscripten/src/compiler.mjs /var/folders/m1/cdn74f917994jd99d_2cpf440000gn/T/tmp1n9egrir.json' failed (returned 1)
em++: error: '/Users/anutosh491/micromamba/envs/xeus-cpp-wasm-build/bin/node /Users/anutosh491/micromamba/envs/xeus-cpp-wasm-build/opt/emsdk/upstream/emscripten/src/compiler.mjs /var/folders/m1/cdn74f917994jd99d_2cpf440000gn/T/tmppa76d2iv.json' failed (returned 1)
make[2]: *** [test/test_xeus_cpp.html] Error 1
make[1]: *** [test/CMakeFiles/test_xeus_cpp.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
make[2]: *** [xcpp.js] Error 1
make[1]: *** [CMakeFiles/xcpp.dir/all] Error 2
make: *** [all] Error 2
emmake: error: 'make -j8 install' failed (returned 2)

This has no symbol out of llvm/clang cause the static archive only contains stuff out of Cppinterop


/Users/anutosh491/micromamba/envs/xeus-cpp-wasm-build/opt/emsdk/upstream/emscripten/emar qc ../libclangCppInterOp.a CMakeFiles/clangCppInterOp.dir/CppInterOp.cpp.o CMakeFiles/clangCppInterOp.dir/CXCppInterOp.cpp.o CMakeFiles/clangCppInterOp.dir/DynamicLibraryManager.cpp.o CMakeFiles/clangCppInterOp.dir/DynamicLibraryManagerSymbol.cpp.o CMakeFiles/clangCppInterOp.dir/Paths.cpp.o

We need to do something like this to fetch all the symbols #493 (comment)

@vgvassilev
Copy link
Contributor

That explains the small size we see. The symbols are optimized away.

@anutosh491
Copy link
Collaborator

That explains the small size we see. The symbols are optimized away.

Yes. While building this in verbose, cmake also produces a directory to keep track of stripped symbols. Has all the above symbols and more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Feature Request]: Discuss the move to static instead of shared build for wasm use cases

3 participants